8f0e95519783e02636f6d234bce1f30b35e4820d,src/main/java/toughasnails/block/BlockTANCampfire.java,BlockTANCampfire,updateTick,#World#BlockPos#IBlockState#Random#,69
Before Change
{
if (rand.nextInt(10) == 0)
{
worldIn.setBlockState(pos, state.withProperty(BURNING, false).withProperty(AGE, 0), 2);
}
}
}
After Change
{
if (worldIn.isRainingAt(pos))
{
worldIn.setBlockState(pos, state.withProperty(BURNING, false).withProperty(AGE, 15), 2);
worldIn.playSound((EntityPlayer)null, pos, SoundEvents.BLOCK_LAVA_EXTINGUISH, SoundCategory.BLOCKS, 0.5F, 2.6F + (worldIn.rand.nextFloat() - worldIn.rand.nextFloat()) * 0.8F);
for (int i = 0; i < 8; ++i)
{